V = Variables
C = Calculation functions The VC10Copy function copy the value from a variable to another.
VC10CollVal (val01, val02, val03, Result)
Parameters:
| IN/OUT | VARIABLE TYPE | EXAMPLE NAME | DIM | |
|---|---|---|---|---|
| IN | SYSTEM | val01 | L/S | First value to compare |
| IN | SYSTEM | val02 | L/S | Second value to compare |
| IN | SYSTEM | val03 | L/S | The value to compare with val01 and val02 |
| OUT | SYSTEM | result | B | Variable containing the result of the comparison according to the truth table shown above |
Run the comparison when the “gfComp” flag is set to 1.
IF gfComp
gfComp = 0
val01 = 1000
val02 = 5000
VC10CollVal (val01, val02, val03, result)
ENDIF